f6e084a96847a6d4b3c19bf9545c9631e1365c1e,src/freenet/store/CachingFreenetStore.java,CachingFreenetStore,fetch,#number[]#number[]#boolean#boolean#boolean#boolean#BlockMetadata#,79
Before Change
if(block != null) {
try {
T ret = this.callback.construct(block.data, block.header, routingKey, block.block.getFullKey(), canReadClientCache, canReadSlashdotCache, meta, null);
return ret;
} catch (KeyVerifyException e) {
Logger.error(this, "Error in fetching for CachingFreenetStore: "+e, e);
After Change
if(block != null) {
try {
return this.callback.construct(block.data, block.header, routingKey, block.block.getFullKey(), canReadClientCache, canReadSlashdotCache, meta, null);
} catch (KeyVerifyException e) {
Logger.error(this, "Error in fetching for CachingFreenetStore: "+e, e);
}